home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Mouse Options 3.xpl < prev    next >
Text File  |  2001-08-28  |  2KB  |  54 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="2"
  4. "UIPATH 1"="Hardware\Mouse\General Options"
  5. "NAME"="Drag Rectangle"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Width"
  9. "TEXT 2"="Height"
  10. "DESCRIPTION 1"="Created for high resolution desktops, this plug-in allows you to modify the amount of movement a mouse-click may travel before releasing the button."
  11. "DESCRIPTION 2"="If you find that you're dragging items rather than just clicking on them, enlarge the rectangle to whatever you find comfortable (for example 16 x 16 for 1280x960 resolution)."
  12. "DESCRIPTION 3"="NOTE: The Windows default is 4 x 4"
  13. "AUTHOR"="Steve Day (xteq@steveday.com)"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Hacked version of XQ Mouse Options 2.xpl for mouse drag settings by Steve Day [xteq@steveday.com]"
  17. "COMMENT 2"=""
  18.  
  19.  
  20. sV1="HKEY_CURRENT_USER\Control Panel\Desktop\DragWidth"
  21. sV2="HKEY_CURRENT_USER\Control Panel\Desktop\DragHeight"
  22.  
  23.  
  24. SUB Plugin_Initialize
  25.  i=RegReadValue(sV1)
  26.  SetUIElement 1,i
  27.  
  28.  i=RegReadValue(sV2)
  29.  SetUIElement 2,i
  30. END SUB
  31.  
  32. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  s=GetUIElement(1)
  34.  if len(s)>0 then
  35.     Call RegWriteValue(sV1,s,1)
  36.  else
  37.     if RegValueExists(sV1) then
  38.        Call RegDeleteValue(sV1)
  39.     end if
  40.  end if
  41.  
  42.  s=GetUIElement(2)
  43.  if len(s)>0 then
  44.     Call RegWriteValue(sV2,s,1)
  45.  else
  46.     if RegValueExists(sV2) then
  47.        Call RegDeleteValue(sV2)
  48.     end if
  49.  end if
  50. END SUB
  51.  
  52. SUB Plugin_Terminate
  53. END SUB
  54.